home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / installer / doc / force.note < prev    next >
Encoding:
Internet Message Format  |  1993-11-23  |  2.0 KB

  1. From oichq!concert!BIX.com!talin Tue, 23 Nov 93 04:10:42 EST
  2. Received: by oichq.oic.com (V1.15/Amiga)
  3.     id AA00000; Tue, 23 Nov 93 04:10:42 EST
  4. Received: by oichq.oic.com (V1.15/Amiga)
  5.     id AA00vd6; Tue, 23 Nov 93 04:10:40 EST
  6. Received: from delphi.com by reggae.concert.net (5.65/tas-reggae/aug93)
  7.     id AA02609; Tue, 23 Nov 93 02:47:04 -0500
  8. Received: from bix.com by delphi.com (PMDF V4.2-11 #4520) id
  9.  <01H5MZROF4688ZFDEL@delphi.com>; Tue, 23 Nov 1993 02:16:09 EDT
  10. Received: by bix.com (CoSy3.31.1.45) id <9311230212.memo.51625@BIX.com>; Tue,
  11.  23 Nov 1993 02:12:35 -0500 (EST)
  12. Date: Tue, 23 Nov 1993 02:12:35 -0500 (EST)
  13. In-Reply-To: <9311221236.AA00v66@oichq.oic.com>
  14. Message-Id: <9311230212.memo.51625@BIX.com>
  15. Content-Transfer-Encoding: 7BIT
  16. X-Cosy-To: jtoebes@oichq.oic.com (John A. Toebes)
  17. From: talin@BIX.com
  18. To: jtoebes@oichq.oic.com
  19. Subject: Re: Secret Magic Cookie for Installer?
  20.  
  21. There should be a series of release notes.
  22.  
  23.  
  24. Here's an excerpt:
  25. ========================================================================
  26.     Expanded the parameter "optional" when used with "copyfile" or "copylib",
  27. also added it to "delete". The new format is
  28.  
  29.     (optional <option> <option> ...)
  30.  
  31. The first three options are mutually exclusive and do not apply to "delete":
  32.  
  33.     "fail" - installer aborts if could not copy (the default)
  34.     "nofail" - installer continues if could not copy
  35.     "oknodelete" - aborts if can't copy, unless reason was "delete protected"
  36.  
  37. The next two apply to all the cases:
  38.  
  39.     "force" - unprotect destination
  40.     "askuser" - ask user if the file should be unprotected (but not in novice)
  41.  
  42. In the case of "askuser", the default for novice mode is an answer of "no".
  43. Therefore, you may want to use "force" to make the novice mode default answer
  44. appear to be "yes".
  45.  
  46.     Added the statement "delopts" which allows for a global change to the
  47. defaults to "copyfile", "copylib" and "delete". The format is
  48.  
  49.     (delopts <option> <option> ...)
  50.  
  51. just like in the expanded version of "optional" given above. The default
  52. global options is "fail".
  53.  
  54.